Initialize Earth Engine


In [1]:
import ee
ee.Initialize()

Python Package Imports


In [2]:
from IPython.display import Image

Code


In [3]:
image = ee.Image('LC8_L1T/LC80440342013154LGN00')
vizParams = {'bands': 'B4,B3,B2',
                 'min': 5000,
                 'max': 30000,
                 'gamma': 1.6};
Image(url=image.getThumbUrl(vizParams))


Out[3]: